@import url('https://fonts.googleapis.com/css2?family=Sen:wght@400;700;800&display=swap');
body, p, h1, h2, h3, h4{
    margin: 0px;
}
body{
    font-family: 'Sen', sans-serif;
    color: #3B444B;
}
a{
    color:inherit;
}
#pageContentContainer{
    min-height:calc(100vh - 400px - 20px); /*100% height of viewport - header and footer - padding*/
    max-width:1330px;
    margin:auto;
    padding-top: 10px;
    padding-bottom: 10px;
}
/* Media queries for showing and hiding desktop/mobile aspects */
@media screen and (max-width: 890px) {
    .desktopAspect{
        display:none;
    }
}
@media screen and (min-width: 891px) {
    .mobileAspect{
        display:none;
    }
}